  /* --------- Contact Page ---------- */

    /* *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
} */

    /* MAP */
    .location {
        width: 80%;
        margin: auto;
        padding: 80px 0;
    }

    .location iframe {
        width: 100%;
        height: 450px;
        border: 0;
    }

    /* CONTACT SECTION */
    .contact-us {
        width: 80%;
        margin: auto;
    }

    /* ROW FLEX */
    .row {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
    }

    .contact-col {
        flex: 1;
        min-width: 300px;
    }

    .contact-col div {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    .contact-col div i {
        font-size: 28px;
        color: #f44336;
        margin-right: 20px;
    }

    .contact-col h5 {
        font-size: 20px;
        color: #555;
        margin-bottom: 5px;
        font-weight: 400;
    }

    .contact-col p {
        color: #777;
    }

    /* FORM */
    .contact-col input,
    .contact-col textarea {
        width: 100%;
        padding: 15px;
        margin-bottom: 17px;
        border: 1px solid #ccc;
        outline: none;
    }

    /* BUTTON */
    .hero-btn {
        width: 200px;
        padding: 12px;
        background: #7ca9e4;
        color: #fff;
        border: none;
        cursor: pointer;
    }

    .hero-btn:hover {
        background: #04acd6;
    }
